home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / windows / objdata.zip / F_TYPE.H < prev    next >
C/C++ Source or Header  |  1996-02-27  |  1KB  |  43 lines

  1. #ifndef        PANTHER_FTYPE_H
  2. #define        PANTHER_FTYPE_H
  3. /*
  4. ** Copyright 1992 - 1995 Bede Scientific Instruments Ltd
  5. **
  6. ** Filename:        FTYPE.H
  7. ** Project:            PANTHER
  8. ** Author:            Ian Simblet
  9. ** Date:                6/6/95
  10. ** Version:            0.1
  11. **
  12. ** Target OS:        DOS, Windows, '95, NT
  13. ** Hardware:        N/A
  14. ** Software:        Borland C++
  15. **
  16. ** Description:    Declares the TFundamentalType enumeration.
  17. **
  18. ** Modification:  08/95        (IS) -- Changed PVOID to USER_TYPE.
  19. **                        20/06/95 (IS) -- Extended the type definition at SJs suggestion
  20. **                            to accommodate a pointer to void (PVOID), which may be used
  21. **                            for storage of existing structs. Added this at the end of the
  22. **                            enum to avoid possible mis-interpretation of existing data. 
  23. **                        06/06/95 (IS) -- Transferred this declaration from the
  24. **                            fs_field.h header.
  25. **
  26. **
  27. **
  28. **
  29. **
  30. */
  31.  
  32.  
  33. // Fundamental types within the system
  34. //
  35. typedef    enum {     NO_TYPE, CHAR_TYPE, INT_TYPE, UNSIGNED_INT_TYPE,
  36.                         LONG_TYPE, UNSIGNED_LONG_TYPE, FLOAT_TYPE,
  37.                         DOUBLE_TYPE, POBJECT, STRING_TYPE,
  38.                         CLASS_FIELD, USER_TYPE } TFundamentalType;
  39.  
  40.  
  41. #endif
  42.  
  43. /* END OF FILE: FTYPE.H */